home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / misc / Orm.lha / Orm / Orm.h < prev    next >
C/C++ Source or Header  |  1993-12-22  |  1KB  |  69 lines

  1. #ifndef ORM_H
  2. #define ORM_H
  3.  
  4.  
  5. /****************************************************************************/
  6.  
  7.  
  8. /* This file was created automatically by CatComp.
  9.  * Do NOT edit by hand!
  10.  */
  11.  
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17.  
  18. /****************************************************************************/
  19.  
  20.  
  21. #define MSG_SCRTITLE1 0
  22. #define MSG_SCRTITLE1_STR "Orm til Amiga - 1993"
  23.  
  24. #define MSG_SCRTITLE2 1
  25. #define MSG_SCRTITLE2_STR "Orm til Amiga - 1993 (uden forhindringer)"
  26.  
  27. #define MSG_EASYREQ_RESULT_TITLE 2
  28. #define MSG_EASYREQ_RESULT_TITLE_STR "Resultat"
  29.  
  30. #define MSG_EASYREQ_RESULT_GAD 3
  31. #define MSG_EASYREQ_RESULT_GAD_STR "OK"
  32.  
  33. #define MSG_EASYREQ_RESULT 4
  34. #define MSG_EASYREQ_RESULT_STR "Ormen blev %d led lang"
  35.  
  36. #define MSG_WINDOWTITLE 5
  37. #define MSG_WINDOWTITLE_STR "Længde: %d"
  38.  
  39.  
  40. /****************************************************************************/
  41.  
  42.  
  43. #ifdef STRINGARRAY
  44.  
  45. struct AppString
  46. {
  47.     LONG   as_ID;
  48.     STRPTR as_Str;
  49. };
  50.  
  51. struct AppString AppStrings[] =
  52. {
  53.     {MSG_SCRTITLE1,MSG_SCRTITLE1_STR},
  54.     {MSG_SCRTITLE2,MSG_SCRTITLE2_STR},
  55.     {MSG_EASYREQ_RESULT_TITLE,MSG_EASYREQ_RESULT_TITLE_STR},
  56.     {MSG_EASYREQ_RESULT_GAD,MSG_EASYREQ_RESULT_GAD_STR},
  57.     {MSG_EASYREQ_RESULT,MSG_EASYREQ_RESULT_STR},
  58.     {MSG_WINDOWTITLE,MSG_WINDOWTITLE_STR},
  59. };
  60.  
  61.  
  62. #endif /* STRINGARRAY */
  63.  
  64.  
  65. /****************************************************************************/
  66.  
  67.  
  68. #endif /* ORM_H */
  69.